projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11cc1eb
)
replaced std::sort with stable_sort to avoid sorting errors with objects in the same...
author
Ingo Ruhnke
<grumbel@gmx.de>
Sun, 30 May 2004 15:25:01 +0000
(15:25 +0000)
committer
Ingo Ruhnke
<grumbel@gmx.de>
Sun, 30 May 2004 15:25:01 +0000
(15:25 +0000)
SVN-Revision: 1366
src/screen/drawing_context.cpp
patch
|
blob
|
history
diff --git
a/src/screen/drawing_context.cpp
b/src/screen/drawing_context.cpp
index
efee7a5
..
52bb81e
100644
(file)
--- a/
src/screen/drawing_context.cpp
+++ b/
src/screen/drawing_context.cpp
@@
-263,7
+263,7
@@
DrawingContext::draw_filled_rect(DrawingRequest& request)
void
DrawingContext::do_drawing()
{
- std::sort(drawingrequests.begin(), drawingrequests.end());
+ std::s
table_s
ort(drawingrequests.begin(), drawingrequests.end());
for(DrawingRequests::iterator i = drawingrequests.begin();
i != drawingrequests.end(); ++i) {