aboutsummaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/pica.h2
-rw-r--r--src/video_core/video_core.cpp5
2 files changed, 2 insertions, 5 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 81af57336..640830144 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -549,8 +549,6 @@ struct float24 {
}
private:
- float24() = default;
-
// Stored as a regular float, merely for convenience
// TODO: Perform proper arithmetic on this!
float value;
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp
index 3b8039de4..087b08026 100644
--- a/src/video_core/video_core.cpp
+++ b/src/video_core/video_core.cpp
@@ -31,10 +31,9 @@ void Start() {
/// Initialize the video core
void Init(EmuWindow* emu_window) {
-#if EMU_PLATFORM == PLATFORM_MACOSX
- // Known problem with GLEW prevents contexts above 2.x on OSX unless glewExperimental is enabled.
+ // Required in order for GLFW to work on Linux,
+ // or for GL contexts above 2.x on OS X
glewExperimental = GL_TRUE;
-#endif
g_emu_window = emu_window;
g_emu_window->MakeCurrent();