Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2003-04-30 17:22:26 +0400
committerTon Roosendaal <ton@blender.org>2003-04-30 17:22:26 +0400
commit9174db096b7c114552a9c61d12701509da00fa09 (patch)
tree32c098c5e232294754ec219f560152cd031a4f71 /source/blender/src/screendump.c
parent53999bd80b1e7a1a51e2470fde038ad5aaecc888 (diff)
LAST of the c code comment translations... hooray!
Might be possible I mised an .h or so, just notify me in that case.
Diffstat (limited to 'source/blender/src/screendump.c')
-rw-r--r--source/blender/src/screendump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/screendump.c b/source/blender/src/screendump.c
index 48c6981d128..967bbe1f075 100644
--- a/source/blender/src/screendump.c
+++ b/source/blender/src/screendump.c
@@ -111,7 +111,7 @@ void write_screendump(char *name)
void BIF_screendump(void)
{
- /* dump pakken van frontbuffer */
+ /* get dump from frontbuffer */
int x=0, y=0;
char imstr[32];
@@ -147,7 +147,7 @@ void BIF_screendump(void)
glReadBuffer(GL_FRONT);
glReadPixels(x, y, dumpsx, dumpsy, GL_RGBA, GL_UNSIGNED_BYTE, dumprect);
- /* filesel openen */
+ /* open filesel */
activate_fileselect(FILE_SPECIAL, imstr, G.ima, write_screendump);
}