X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.h;h=9e48967ae25dc1935633ae3d2be5d1ec2badc138;hp=cfc69090f555ec70bd35ad453ce099a9dd59a5f5;hb=6dd539966821debd18e0b86ed126742cd81d7fc9;hpb=63b52d964e75f9224645c6fbb4ba4387ada506f8 diff --git a/src/main.h b/src/main.h index cfc6909..9e48967 100644 --- a/src/main.h +++ b/src/main.h @@ -78,11 +78,10 @@ void RatCatcher(int x, int y, int buttons, int wheel, Screen * scr, View * view) } -inline void MainLoop(Document & doc, const Rect & bounds = Rect(0,0,1,1), const Colour & c = Colour(0.f,0.f,0.f,1.f)) +inline void MainLoop(Document & doc, Screen & scr, View & view) { // order is important... segfaults occur when screen (which inits GL) is not constructed first -_- - Screen scr; - View view(doc,scr, bounds, c); + scr.DebugFontInit("DejaVuSansMono.ttf"); scr.SetMouseHandler(RatCatcher);