Revision: 18924
http://vice-emu.svn.sourceforge.net/vice-emu/?rev=18924&view=rev
Author: strik
Date: 2008-06-27 14:15:29 -0700 (Fri, 27 Jun 2008)
Log Message:
-----------
src/autostart: Added colon (":") after LOAD and RUN also if autostarting
a diskette.
Modified Paths:
--------------
trunk/vice/src/ChangeLog
trunk/vice/src/autostart.c
Modified: trunk/vice/src/ChangeLog
===================================================================
--- trunk/vice/src/ChangeLog 2008-06-27 20:46:49 UTC (rev 18923)
+++ trunk/vice/src/ChangeLog 2008-06-27 21:15:29 UTC (rev 18924)
@@ -1,7 +1,7 @@
2008-06-27 Spiro Trikaliotis <spi...@gm...>
* autostart.c: Incorporated patch from iAN Coog: 1. Add colon
- (":") after "LOAD" and "RUN" lines using tostart. This is
+ (":") after "LOAD" and "RUN" lines used to start. This is
helpful if there is already something on the screen, to prevent
it to provoke some error messages. 2. remember original true
drive emulation state before using autostart. This fixes the
Modified: trunk/vice/src/autostart.c
===================================================================
--- trunk/vice/src/autostart.c 2008-06-27 20:46:49 UTC (rev 18923)
+++ trunk/vice/src/autostart.c 2008-06-27 21:15:29 UTC (rev 18924)
@@ -374,9 +374,9 @@
traps = 1;
}
if (autostart_program_name)
- tmp = lib_msprintf("LOAD\"%s\",8,1\r", autostart_program_name);
+ tmp = lib_msprintf("LOAD\"%s\",8,1:\r", autostart_program_name);
else
- tmp = lib_stralloc("LOAD\"*\",8,1\r");
+ tmp = lib_stralloc("LOAD\"*\",8,1:\r");
kbdbuf_feed(tmp);
lib_free(tmp);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|