mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
subpagetable is unsigned
Origin commit data
------------------
Branch: ni/coolstream
Commit: e10cb00613
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-03-06 (Mon, 06 Mar 2017)
Origin message was:
------------------
subpagetable is unsigned
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -5234,7 +5234,7 @@ void RenderPage()
|
|||||||
{
|
{
|
||||||
page_atrb[32].fg = yellow;
|
page_atrb[32].fg = yellow;
|
||||||
page_atrb[32].bg = menu1;
|
page_atrb[32].bg = menu1;
|
||||||
int showpage = tuxtxt_cache.page_receiving;
|
int showpage = tuxtxt_cache.page_receiving < 0 ? 0 : tuxtxt_cache.page_receiving;
|
||||||
int showsubpage = tuxtxt_cache.subpagetable[showpage];
|
int showsubpage = tuxtxt_cache.subpagetable[showpage];
|
||||||
if (showsubpage!=0xff)
|
if (showsubpage!=0xff)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user