diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-10-05 23:34:06 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-10-05 23:34:06 +0000 |
commit | 9b8ba3cb9eca3cc8c55e571effb99e880b461e68 (patch) | |
tree | 6c842c0b9df7b89b3ec53785e12aa365613b09c2 /src | |
parent | 89636834a6d0c86a9f835db48768601cec047214 (diff) | |
download | libbu++-9b8ba3cb9eca3cc8c55e571effb99e880b461e68.tar.gz libbu++-9b8ba3cb9eca3cc8c55e571effb99e880b461e68.tar.bz2 libbu++-9b8ba3cb9eca3cc8c55e571effb99e880b461e68.tar.xz libbu++-9b8ba3cb9eca3cc8c55e571effb99e880b461e68.zip |
I just got rid of the float markers, we know we need a new float formatter, it
doesn't need to make all output ugly forever.
Diffstat (limited to '')
-rw-r--r-- | src/formatter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatter.h b/src/formatter.h index 9e25529..23c738a 100644 --- a/src/formatter.h +++ b/src/formatter.h | |||
@@ -192,7 +192,7 @@ namespace Bu | |||
192 | void ffmt( type f ) | 192 | void ffmt( type f ) |
193 | { | 193 | { |
194 | Bu::FString fTmp; | 194 | Bu::FString fTmp; |
195 | fTmp.format("%f {~!~}", f ); | 195 | fTmp.format("%f", f ); |
196 | // writeAligned("**make floats work**"); | 196 | // writeAligned("**make floats work**"); |
197 | writeAligned( fTmp ); | 197 | writeAligned( fTmp ); |
198 | usedFormat(); | 198 | usedFormat(); |