diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-06 12:07:05 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 12:07:05 +0100 |
commit | c39d44fc2ef0d2e5435524c5b96b5a367df2438b (patch) | |
tree | d87349297c0b8964e306f15105e047a505d16b1e /Games/Snake | |
parent | 9ac94d393e02c8e725d58affd03b1fd0e0c45552 (diff) | |
download | serenity-c39d44fc2ef0d2e5435524c5b96b5a367df2438b.zip |
LibGfx: Rename GraphicsBitmap.{cpp,h} => Bitmap.{cpp,h}
Diffstat (limited to 'Games/Snake')
-rw-r--r-- | Games/Snake/SnakeGame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Games/Snake/SnakeGame.cpp b/Games/Snake/SnakeGame.cpp index 21aa51fc0a..9567499662 100644 --- a/Games/Snake/SnakeGame.cpp +++ b/Games/Snake/SnakeGame.cpp @@ -27,7 +27,7 @@ #include "SnakeGame.h" #include <LibGUI/GFontDatabase.h> #include <LibGUI/GPainter.h> -#include <LibGfx/GraphicsBitmap.h> +#include <LibGfx/Bitmap.h> #include <stdlib.h> #include <time.h> |