diff --git a/build-windows.sh b/build-windows.sh index 193cf28..2485276 100755 --- a/build-windows.sh +++ b/build-windows.sh @@ -9,6 +9,8 @@ # # create there a symlink to BearLibTerminal.dll # $ cd /path/to/mingw32/dlls && sudo ln -s /path/to/BearLibTerminal.dll . +# Ususally you must place symlink to where mingw stores windows dlls, ie +# /usr/x86_64-w64-mingw32/lib # the build command diff --git a/engine/screens/game.go b/engine/screens/game.go index 7eabc47..7405a31 100644 --- a/engine/screens/game.go +++ b/engine/screens/game.go @@ -10,11 +10,11 @@ import ( ) type GameScreen struct { - mw *mainwindow.MainWindow - state *gamestate.GameState - vp *mainwindow.ViewPort + mw *mainwindow.MainWindow + state *gamestate.GameState + vp *mainwindow.ViewPort controller *ecs.Controller - scm *types.ScreenManager + scm *types.ScreenManager } func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort, controller *ecs.Controller, scm *types.ScreenManager) *GameScreen { @@ -26,12 +26,12 @@ func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPo func (ts *GameScreen) UseEcs() bool { return true } func (ts *GameScreen) Enter() { - ts.mw.GetLayer("overlay").ClearArea(0, ts.mw.H - 3, 30, 3) + ts.mw.GetLayer("overlay").ClearArea(0, ts.mw.H-3, 30, 3) ts.mw.GetLayer("overlay").WithColor("#77777777"). - Print(1, ts.mw.H - 2, "Press [color=white]?[/color] for help") + Print(1, ts.mw.H-2, "Press [color=white]?[/color] for help") } func (ts *GameScreen) Exit() { - ts.mw.GetLayer("base").ClearArea(1, ts.mw.H -2, 30, 1) + ts.mw.GetLayer("base").ClearArea(1, ts.mw.H-2, 30, 1) //remove what we dont need } diff --git a/engine/screens/title.go b/engine/screens/title.go index 2441a9b..bfd10b4 100644 --- a/engine/screens/title.go +++ b/engine/screens/title.go @@ -58,9 +58,9 @@ Highest [color=green]S[/color]cores -Roguebasin Libtcod Tutorial (c) 2010-2011, Jotaf Henriques -Brogue 1.3 (c) 2010 Brian Walker -Madness (c) 2010 hmp +Roguebasin Libtcod Tutorial (c) 2010-2011, Jotaf Henriques +Brogue 1.3 (c) 2010 Brian Walker +Madness (c) 2010 hmp BearLibTerminal (c) Cfyz 2009-2019 -Gogue (c) jcerise -` \ No newline at end of file +Gogue (c) jcerise +`