1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

Minor change.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5697 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-06-10 12:20:50 +00:00
parent ffc06fcea3
commit f3cc7a4a32

View File

@ -20,12 +20,11 @@ void show(char *name)
char line1[40];
sprintf(line1, CBOLDON "Overlay Demo - Overlay %s" CPLAINTEXT, name);
DlgBoxOk(line1,
"Click OK to return to Main.");
DlgBoxOk(line1, "Click OK to return to Main.");
}
/* In a real-world overlay program one would probably not use a #pragma but
* rather place the all the code of certain souce files into the overlay by
* rather place the all the code of certain source files into the overlay by
* compiling them with --code-name OVERLAY1.
*/
#pragma code-name(push, "OVERLAY1");