From: ol.sc
Date: Sun, 10 Jun 2012 12:20:50 +0000 (+0000)
Subject: Minor change.
X-Git-Tag: V2.14~371
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f3cc7a4a32e3fab19694a14463e52e04f612064c;p=cc65
Minor change.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5697 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/samples/geos/overlay-demo.c b/samples/geos/overlay-demo.c
index cc751ea37..1f0bbf6f7 100644
--- a/samples/geos/overlay-demo.c
+++ b/samples/geos/overlay-demo.c
@@ -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");