Skip to content

Commit

Permalink
fix spacing and min app version (#150)
Browse files Browse the repository at this point in the history
* correct annoying spacing

* change app version from 5.0.0.0.0 to 5.0.0.0000

Not sure if this will negatively effect anything but have been doing his for a while with no issues.
  • Loading branch information
LogicalJoe authored Sep 8, 2020
1 parent 83c8e00 commit c4dd935
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/app.inc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ macro app_private
local app
element app.base

min_version := '5.0.0.0.0'
min_version := '5.0.0.0000'

postpone
virtual
Expand Down
8 changes: 4 additions & 4 deletions src/view-vat-items.asm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ view_vat_items:
call gui_draw_static_options
ld hl,sprite_egg
draw_sprite_2x 120, 57
print string_new_prgm, 199, 194
print string_new_prgm, 199, 195
ld de,287
.no_new:
ld (lcd_x),de
Expand Down Expand Up @@ -390,19 +390,19 @@ tmp_y := $-1
print string_locked, 199, 129
print string_hidden, 199, 140

print string_rename, 199, 194
print string_rename, 199, 195
ld de,262
ld (lcd_x),de
inc hl
call lcd_string

bit prgm_locked,(iy + prgm_flag)
jr nz,.is_locked
print string_edit_prgm, 199, 183
print string_edit_prgm, 199, 184
ld de,269
jr .no_new
.is_locked:
print string_new_prgm, 199, 183
print string_new_prgm, 199, 184
ld de,287
.no_new:
ld (lcd_x),de
Expand Down

0 comments on commit c4dd935

Please sign in to comment.