From aa4a905bd8aae7db241925d1282544ba60a6d968 Mon Sep 17 00:00:00 2001 From: Cyberarm Date: Mon, 17 Sep 2018 17:13:52 -0500 Subject: [PATCH] Update gosu and opengl-bindings, added bold defualt for Text --- Gemfile.lock | 8 ++++---- lib/objects/text.rb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6304bf4..d80565f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,9 +3,9 @@ GEM specs: glu (8.2.2) glu (8.2.2-x86-mingw32) - gosu (0.13.3) - gosu (0.13.3-x86-mingw32) - opengl-bindings (1.6.6) + gosu (0.14.0) + gosu (0.14.0-x86-mingw32) + opengl-bindings (1.6.7) PLATFORMS ruby @@ -17,4 +17,4 @@ DEPENDENCIES opengl-bindings BUNDLED WITH - 1.16.2 + 1.16.4 diff --git a/lib/objects/text.rb b/lib/objects/text.rb index 0488faf..b0cd6c7 100644 --- a/lib/objects/text.rb +++ b/lib/objects/text.rb @@ -54,7 +54,7 @@ class Text end unless available - font = Gosu::Font.new(@size, name: @font) + font = Gosu::Font.new(@size, name: @font, bold: true) CACHE[@size] = {} unless CACHE[@size].is_a?(Hash) CACHE[@size][@font] = font end