diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2016-08-16 08:06:31 +0200 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2016-08-16 08:06:31 +0200 |
commit | 850bb07907f72c9a0710dbe455385812c714834e (patch) | |
tree | a9795bbbe86ebc111b888590bafbad32b17fe06e | |
parent | 292e2efab2cc61ff0327f674cf43d8ff504d7c40 (diff) | |
download | Another-mandelbrot-viewer-master.tar.gz Another-mandelbrot-viewer-master.tar.bz2 Another-mandelbrot-viewer-master.zip |
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | README.markdown | 6 | ||||
-rw-r--r-- | mandelbrot.c | 4 |
3 files changed, 3 insertions, 9 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2010 Kevin Chabowski(kevin@kch42.de) +Copyright (c) 2010 Laria Carolin Chabowski(laria@laria.me) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.markdown b/README.markdown index c61acf2..9e82bd0 100644 --- a/README.markdown +++ b/README.markdown @@ -4,12 +4,6 @@ Another mandelbrot viewer A Allegro-based, multithreaded (using OpenMP), graphical mandelbrot viewer with a changeable color palette (with a integrated palette editor). -Leaving a comment ------------------ - -If you like / dislike this program, leave a comment at: -http://kch42.de/hp/en/programming/11/mandelbrot-viewer - How to compile -------------- diff --git a/mandelbrot.c b/mandelbrot.c index e71c5bc..233ba79 100644 --- a/mandelbrot.c +++ b/mandelbrot.c @@ -131,7 +131,7 @@ void introtext(BITMAP* canvas) textprintf_centre_ex(canvas, font, (int) canvas->w/2, 10, 0xffffffff, -1, "simple mandelbrot viewer by"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 22, 0xffffffff, -1, - "Kevin Chabowski (kevin@kch42.de)"); + "Laria Carolin Chabowski (laria@laria.me)"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 34, 0xffffffff, -1, "v 0.5"); textprintf_centre_ex(canvas, font, (int) canvas->w/2, 46, 0xffffffff, -1, @@ -426,7 +426,7 @@ int main() textprintf_ex(buffer, font, 2, SCREEN_H - 12, 0xffffffff, -1, "X = %lf Y = %lf", x1 + mouse_x * dppx, y1 + mouse_y * dppx); textprintf_right_ex(buffer, font, SCREEN_W - 2, SCREEN_H - 12, - 0xffffffff, -1, "(c) 2010 by Kevin Chabowski");
+ 0xffffffff, -1, "(c) 2010 by Laria Carolin Chabowski");
if(update_fract)
textprintf_centre_ex(buffer, font, (int)(SCREEN_W/2),
|