mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
* clutter/win32/clutter-backend-win32.c (check_vblank_env): Use
g_ascii_strcasecmp instead of strcasecmp because strcasecmp isn't available in MSVC.
This commit is contained in:
parent
7d59aa3da0
commit
abbcf0ee4b
@ -1,3 +1,9 @@
|
|||||||
|
2008-06-30 Neil Roberts <neil@o-hand.com>
|
||||||
|
|
||||||
|
* clutter/win32/clutter-backend-win32.c (check_vblank_env): Use
|
||||||
|
g_ascii_strcasecmp instead of strcasecmp because strcasecmp isn't
|
||||||
|
available in MSVC.
|
||||||
|
|
||||||
2008-06-30 Matthew Allum <mallum@openedhand.com>
|
2008-06-30 Matthew Allum <mallum@openedhand.com>
|
||||||
|
|
||||||
Bug 1007 - Fix TFP fallback mechanism
|
Bug 1007 - Fix TFP fallback mechanism
|
||||||
|
@ -155,7 +155,7 @@ clutter_backend_win32_constructor (GType gtype,
|
|||||||
static gboolean
|
static gboolean
|
||||||
check_vblank_env (const char *name)
|
check_vblank_env (const char *name)
|
||||||
{
|
{
|
||||||
return clutter_vblank_name && !strcasecmp (clutter_vblank_name, name);
|
return clutter_vblank_name && !g_ascii_strcasecmp (clutter_vblank_name, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
ClutterFeatureFlags
|
ClutterFeatureFlags
|
||||||
|
Loading…
Reference in New Issue
Block a user