mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
cli: fix compilation
This commit is contained in:
parent
e76f74fd73
commit
ca30397e7a
3 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ import time
|
|||
|
||||
struct App {
|
||||
mut:
|
||||
gg &gg.Context = 0
|
||||
gg &gg.Context = unsafe { 0 }
|
||||
touch TouchInfo
|
||||
ui Ui
|
||||
theme &Theme = themes[0]
|
||||
|
@ -18,7 +18,7 @@ mut:
|
|||
state GameState = .play
|
||||
tile_format TileFormat = .normal
|
||||
moves int
|
||||
perf &Perf = 0
|
||||
perf &Perf = unsafe { 0 }
|
||||
is_ai_mode bool
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue