I Had to Fall in Love

I Had to Fall in Love was the only solo album released by former Supremes lead singer Jean Terrell, released in 1978 on the A&M label. The album was completed five years after she left the Supremes and when it was finished, promotion was stopped completely because of Terrell's strict religious beliefs that prevented her from promoting the album in a way that she did not favor. In 2006, an independent label re-released the album in CD format. The title track is also available on the Motown compilation CD The Supremes: Greatest Hits and Rare classics, 70's.

I Had to Fall in Love
Studio album by
Released1978
Recorded1978
StudioTotal Experience Recording Studios
(Hollywood, California)
GenreSoul
Length34:01
LabelA&M
ProducerBobby Martin

Track listing

  1. "Don't Stop Reaching for the Top" (Jimmie Davis, Jeffrey Osborne) - (4:13)
  2. "No One Like My Baby" (Fred Bliffert) - (3:45)
  3. "Rising Cost of Love" (Bobby Martin, Len Ron Hanks, Zane Grey) - (3:34)
  4. "Change Up" (Len Ron Hanks, Zane Grey) - (5:00)
  5. "How Can You Live (Without Love)" (Len Ron Hanks, Zane Grey) - (3:21)
  6. "I Had to Fall in Love" (Benny Gallagher, Graham Lyle) - (4:16)
  7. "That's the Way Love Grows" (Frank McDonald, Chris Rae, Gerry Shury, Ron Roker) - (3:30)
  8. "You've Been So Good for Me" (Len Ron Hanks, Zane Grey) - (4:23)
  9. "No Limit" (Len Ron Hanks, Zane Grey) - (3:19)

Personnel

Singers

Musicians

Production credits

  • Produced by Bobby Martin for Bobby Martin Productions
  • Recorded and Mixed at Total Experience Recording Studios, Hollywood
  • Sound Engineer - Douglas Greaves
  • Norman Seeff - photography
gollark: By multiplying two smallish prime numbers (inaccessible to the user except via the debug API, if it was available in potatOS (it's not, fully)) to make a bigger *semi*prime it's possible to make a problem easy to generate but relatively hard to solve.
gollark: It's actually very fast.
gollark: ```lualocal function isprime(n) for i = 2, math.sqrt(n) do if n % i == 0 then return false end end return trueend local function findprime(from) local i = from while true do if isprime(i) then return i end i = i + 1 endend```
gollark: ```lua if settings.get "potatOS.removable" then potatOS.actually_really_uninstall = function(hedgehog) if hedgehog == "76fde5717a89e332513d4f1e5b36f6cb" then print "Hedgehog valid. Deleting potatOS main code." fs.delete "/autorun" else error "Invalid hedgehog! Expected 76fde5717a89e332513d4f1e5b36f6cb." end end end```Also this bit, optionally.
gollark: ```lua begin_uninstall_process = function() print "Please wait. Generating semiprime number..." local p1 = findprime(math.random(2, 100000)) local p2 = findprime(math.random(2, 100000)) local num = p1 * p2 print("Please find the prime factors of the following number:", num) write "Factor 1: " local f1 = tonumber(read()) write "Factor 2: " local f2 = tonumber(read()) if (f1 == p1 and f2 == p2) or (f2 == p1 and f1 == p2) then term.clear() term.setCursorPos(1, 1) print "Accepted. Moving startup." fs.delete "old-potatOS-startup" fs.move("startup", "old-potatOS-startup") print "Press any key to continue." os.pullEvent "key" os.reboot() else print("Factors", f1, f2, "invalid.", p1, p2, "expected.") end end```This bit is the uninstaller.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.