]> git.sur5r.net Git - c128-kasse/commitdiff
use correct constant to switch videomode mxf/remove-dual-monitor
authorMaik Fischer <maikf@qu.cx>
Tue, 26 Sep 2017 08:13:39 +0000 (10:13 +0200)
committerMaik Fischer <maikf@qu.cx>
Tue, 26 Sep 2017 08:15:16 +0000 (10:15 +0200)
src/itemz.c
src/kasse.c

index fcf3a9cae9fd752b4849306ff6afdb219431391e..f04678c0753f1801a6b9a5d5470c18bf0db7f3c0 100644 (file)
@@ -134,9 +134,7 @@ static void itemz_manager() {
 }
 
 int main(void) {
-  if (VIDEOMODE == 40) {
-    videomode(80);
-  }
+  videomode(VIDEOMODE_80x25);
 
   /*  clock CPU at double the speed (a whopping 2 Mhz!) */
   fast();
index 53141dcdd080a6d72c0e540855a5f60f8e912a56..203d70f683ae5dfe198149227edb5911d8f1ddc7 100644 (file)
@@ -10,6 +10,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <cbm.h>
+#include <c128.h>
 
 #include "general.h"
 #include "config.h"
@@ -403,8 +404,7 @@ int main(void) {
   char *c;
   char *time;
 
-  if (VIDEOMODE == 40)
-    videomode(80);
+  videomode(VIDEOMODE_80x25);
 
   /* clock CPU at double the speed (a whopping 2 Mhz!) */
   fast();