From 5ab23ab1c0f945b247f1115e80de27f1abead25a Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 8 Jul 2015 17:25:56 -0600 Subject: [PATCH] Allegro 5 example: removed public domain mark, MIT as the rest, with @bggd approval --- examples/allegro5_example/README.md | 2 -- examples/allegro5_example/imgui_impl_a5.cpp | 2 +- examples/allegro5_example/imgui_impl_a5.h | 2 +- examples/allegro5_example/main.cpp | 1 - 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/examples/allegro5_example/README.md b/examples/allegro5_example/README.md index 62128a332..9488b9388 100644 --- a/examples/allegro5_example/README.md +++ b/examples/allegro5_example/README.md @@ -14,5 +14,3 @@ g++ -I ../imgui main.cpp imgui_impl_a5.cpp ../imgui/imgui.cpp -lallegro -lallegr ``` cl /MD /I /I ..\imgui main.cpp imgui_impl_a5.cpp ..\imgui\imgui.cpp /link /LIBPATH: allegro-5.0.10-monolith-md.lib user32.lib ``` - -public domain diff --git a/examples/allegro5_example/imgui_impl_a5.cpp b/examples/allegro5_example/imgui_impl_a5.cpp index 9d3c94e35..126e21852 100644 --- a/examples/allegro5_example/imgui_impl_a5.cpp +++ b/examples/allegro5_example/imgui_impl_a5.cpp @@ -1,6 +1,6 @@ // ImGui Allegro 5 bindings // https://github.com/ocornut/imgui -// by @birthggd, public domain +// by @birthggd #include // uint64_t #include // memcpy diff --git a/examples/allegro5_example/imgui_impl_a5.h b/examples/allegro5_example/imgui_impl_a5.h index e31ecfe77..0285381ef 100644 --- a/examples/allegro5_example/imgui_impl_a5.h +++ b/examples/allegro5_example/imgui_impl_a5.h @@ -1,6 +1,6 @@ // ImGui Allegro 5 bindings // https://github.com/ocornut/imgui -// by @birthggd, public domain +// by @birthggd #pragma once diff --git a/examples/allegro5_example/main.cpp b/examples/allegro5_example/main.cpp index 4de89251b..1898a579b 100644 --- a/examples/allegro5_example/main.cpp +++ b/examples/allegro5_example/main.cpp @@ -1,5 +1,4 @@ // ImGui - standalone example application for Allegro 5 -// public domain #include #include