mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cli: fix compilation
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user