blob: f3caee1a44e46b50724cd1eb0c9be103cc65fb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 10_fix_ati_crash.dpatch by Bradley Smith <brad@brad-smith.co.uk>
##
## DP: Fixes crash on ati cards
@DPATCH@
diff -Naur briquolo-0.5.7.orig/src/MOGL/MOGL_Fenetre.cpp briquolo-0.5.7/src/MOGL/MOGL_Fenetre.cpp
--- briquolo-0.5.7.orig/src/MOGL/MOGL_Fenetre.cpp 2008-03-24 13:23:07.000000000 +0000
+++ briquolo-0.5.7/src/MOGL/MOGL_Fenetre.cpp 2008-03-29 19:41:40.000000000 +0000
@@ -168,6 +168,11 @@
// On recommence donc !
_NbBitParPixel = 24;
_SurfaceSDL = _CreerFenetre(_NbBitParPixel, flags);
+ if(_SurfaceSDL == NULL)
+ {
+ _NbBitParPixel = 16;
+ _SurfaceSDL = _CreerFenetre(_NbBitParPixel, flags);
+ }
}
}
if (_SurfaceSDL == NULL)
|