]> git.sur5r.net Git - c128-kasse/blobdiff - include/config.h
actually increment transaction id
[c128-kasse] / include / config.h
index 18cbb11e5791fd8c09c4e49174888acecca57fd8..dfba87e18f61a4ae5b7ac9865d1fba46af0e1758 100644 (file)
@@ -3,9 +3,10 @@
 #ifndef CONFIG_H_
 #define CONFIG_H_
 
-#define MAX_ITEMS 16
+#define MAX_ITEMS 32
 #define MAX_ITEM_NAME_LENGTH 9
 #define MAX_CREDIT_ITEMS 75
+#define CREDITS_PER_PAGE 10
 
 /* Eingenommes Geld in Cent */
 extern unsigned long int money;
@@ -24,6 +25,7 @@ struct status_t {
 
 struct status_array_t {
        BYTE num_items;
+       unsigned int transaction_id;
        struct status_t status[MAX_ITEMS];
 };