aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/cge_main.cpp')
-rw-r--r--engines/cge/cge_main.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/cge/cge_main.cpp b/engines/cge/cge_main.cpp
index 9a2ce931f0..cdbb94f785 100644
--- a/engines/cge/cge_main.cpp
+++ b/engines/cge/cge_main.cpp
@@ -1832,8 +1832,8 @@ static void LoadSprite (const char *fname, int ref, int cav, int col = 0, int ro
Sprite->Flags.Tran = tran;
Sprite->Flags.Kill = true;
Sprite->Flags.BDel = true;
- // TODO : Get Filename from entire path
//fnsplit(fname, NULL, NULL, Sprite->File, NULL);
+ warning("LoadSprite: use of fnsplit");
Sprite->ShpCnt = shpcnt;
VGA::SpareQ.Append(Sprite);
@@ -2090,6 +2090,7 @@ static void RunGame (void)
{
//TODO Change the SNPOST message send to a special way to send function pointer
// if (FINIS) SNPOST(SNEXEC, -1, 0, (void *)&QGame);
+ warning("RunGame: problematic use of SNPOST");
MainLoop();
}
@@ -2188,8 +2189,9 @@ bool ShowTitle (const char * name)
#ifdef CD
STARTUP::Summa |= (0xC0 + (DriveCD(0) << 6)) & 0xFF;
#else
- // TODO : do good boot...
- Boot * b = ReadBoot(0); //getdisk());
+// Boot * b = ReadBoot(getdisk());
+ warning("ShowTitle: FIXME ReadBoot");
+ Boot * b = ReadBoot(0);
uint32 sn = (b->XSign == 0x29) ? b->Serial : b->lTotSecs;
free(b);
sn -= ((IDENT *)Copr)->disk;