Skip to content

Commit

Permalink
[Android] Fixed compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed May 25, 2014
1 parent 0c55c76 commit 0b4f82e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Source/OpenTK/Platform/Android/GameViewBase.cs
Expand Up @@ -32,8 +32,10 @@ namespace OpenTK
{
#if OPENTK_0
[Register ("opentk/GameViewBase")]
#else
#elif OPENTK_1
[Register ("opentk_1_0/GameViewBase")]
#elif OPENTK_1_1
[Register ("opentk_1_1/GameViewBase")]
#endif
public abstract class GameViewBase : SurfaceView, IGameWindow
{
Expand Down Expand Up @@ -1143,7 +1145,7 @@ public Point PointToScreen (Point point)
public event EventHandler<Input.MouseWheelEventArgs> MouseWheel;


#if OPENTK_1
#if !OPENTK_0
public OpenTK.Input.IInputDriver InputDriver {
get {
throw new NotSupportedException ();
Expand Down

0 comments on commit 0b4f82e

Please sign in to comment.