mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-23 03:02:50 +03:00
Small fix in the premake4 file.
This commit is contained in:
@@ -261,9 +261,9 @@ function build_link_configuration( package_name, use_ee_icon )
|
||||
links { get_backend_link_name( "sfml-window" ) }
|
||||
end
|
||||
else
|
||||
if ( os.is_real("macosx") or os.is_real("windows") ) then
|
||||
if ( os.is_real("macosx") or os.is_real("windows") or os.is_real("mingw32") ) then
|
||||
if ( os.is_real("windows") ) then
|
||||
links { "mingw32" }
|
||||
links { "mingw32" }
|
||||
|
||||
if ( true == use_ee_icon ) then
|
||||
linkoptions { "../../assets/icon/ee.res" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QtCreatorProject>
|
||||
<!-- Written by QtCreator 2.7.1, 2013-06-23T19:11:40. -->
|
||||
<!-- Written by QtCreator 2.7.1, 2013-06-25T01:46:56. -->
|
||||
<qtcreator>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#include <eepp/graphics/cframebuffer.hpp>
|
||||
#include <eepp/graphics/ctexturefactory.hpp>
|
||||
#include <eepp/graphics/cglobalbatchrenderer.hpp>
|
||||
#include <eepp/window/cengine.hpp>
|
||||
#include <eepp/graphics/renderer/cgl.hpp>
|
||||
|
||||
@@ -798,7 +798,7 @@ cUIControl * cUIControl::OverFind( const eeVector2f& Point ) {
|
||||
|
||||
|
||||
if ( NULL == pOver )
|
||||
pOver = const_cast<cUIControl *>( reinterpret_cast<const cUIControl *>( this ) );
|
||||
pOver = this;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user